home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 5 / BBS in a Box -Volume V (BBS in a Box) (April 1992).iso / Files / Prog / T / TCL⁄C 1.1.2 Update.cpt / THINK C 5.0 Folder / THINK Class Library 1.1 / TCL Libraries / TCL Library headers / TCLUtilities.h / TCLUtilities.h
Encoding:
C/C++ Source or Header  |  1991-12-16  |  777 b   |  26 lines  |  [TEXT/KAHL]

  1. /******************************************************************************
  2.  TCLUtilities.h
  3.  
  4.         Header for TCL Utilities library
  5.         
  6.         Copyright © 1991 Symantec Corporation. All rights reserved.
  7.                 
  8.  ******************************************************************************/
  9.  
  10. #pragma once        /* TCL 1.1.2 DLP 12/16/91 */
  11.  
  12. enum    // mnemonic constants for SetAllocation flag
  13. {
  14.     kAllocCantFail = FALSE,
  15.     kAllocCanFail
  16. };
  17.  
  18. void        ErrorAlert( short error, long message);
  19. void        *NewHandleCanFail( long size);
  20. void        ResizeHandleCanFail( void* theHandle , long newSize);
  21. Boolean        SetAllocation( Boolean canFail);
  22. void        SetCriticalOperation( Boolean aCriticalOp);
  23. long        cstrlen( char *s );
  24. pascal Boolean    EqualMem( void *p1, void *p2, long n);
  25. void SetMinimumStack( long minSize);
  26.